body {
    background-color: var(--background-color);
    padding: 20px;
}


.logo img {
    /* height: 60px; */
    max-width: 185px;
}

.head {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    align-items: center;
    width: fit-content;
    text-align: center;
    position: absolute;
    left: 40px;
    top: 18px;
}

.slogan {
    margin-top: -20px;
    font-size: small;
}

.containers {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-height: 100vh;
    flex-wrap: wrap;
}

.wrap {
    min-height: calc(100vh - 40px);
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    /* position: relative; */
    /* height: 100%; */
}

.img {
    flex: 1;
    /* min-height: calc(100vh - 40px);
    max-height: 120vh; */
    width: 40vw;
    text-align: right;
    /* max-width: 50vw; */
}

@media screen and (max-width:768px) {
    .img {
        display: none;
    }
}

.img img {
    object-fit: cover;
    /* height: 100%;
    width: 100%; */
    max-height: 100%;
    max-width: 100%;
    border-radius: 24px;
    margin-bottom: 20px;
    /* border-top-left-radius: 24px;
    border-bottom-left-radius: 24px; */
}

form {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
    margin-top: 70px;
    min-width: 280px;
}

.form-control:focus,
.form-check-input:focus {
    border-color: inherit;
    box-shadow: none;
}

.form-floating>.form-control:focus~label {
    transform: scale(.85) translateY(-30px) translateX(.15rem);
}

input[type=checkbox]~label {
    user-select: none;
}

.input-icon {
    position: relative;
    display: inline-block;
    width: 100%;
}

.input-icon i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9A9A9A;
}

#password {
    padding-right: 30px;
}

.btn {
    width: 100%;
    text-align: center;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.03);
}

.btn:hover {
    background-color: inherit;
    border-color: inherit;
    color: inherit;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--background-color);
}

.btn-primary-outline {
    background-color: var(--background-color);
    border-color: var(--text-color);
    color: var(--text-color);
}

.or {
    position: relative;
}

.or span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    background-color: var(--background-color);
    padding: 2px 10px;
}

.need {
    margin: auto;
    color: #6C6C6C;
    text-align: center;
    font-weight: 400;
}

.need a {
    color: var(--primary-color);
    font-weight: 600;
}

#phone {
    padding-right: 45px;
}

.iti {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 45px;
    z-index: 1;
}

.iti input {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}

.tel {
    position: relative;
}

h1 {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -1.6px;
}

p {
    color: #969696;
    font-size: 18px;
    font-weight: 400;
}

.form-control:focus {
    border-color: var(--primary-color);
}

.form-floating>.form-control:focus~label {
    color: var(--primary-color);
}

.tab-contents {
    width: 100%;
}

.tabs {
    width: 70%;
    min-width: 280px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: -30px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs button:first-child {
    text-align: start;
}

.tabs button:last-child {
    text-align: end;
}

.tabs button {
    flex: 1;
    border: none;
    outline: none;
    background-color: transparent;
}

.tabs .tab {
    color: var(--comp2-color);
    background-color: transparent;
    border-bottom: 2px solid var(--comp2-color);
    font-size: 26px;
    font-weight: 300;
    line-height: 110%;
    letter-spacing: -1.6px;
    padding: 20px 0;
    min-height: 100px;
}

.tabs .tab.active {
    color: var(--primary-color);
    background-color: transparent;
    border-bottom: 2px solid var(--primary-color);
    font-weight: 700;
}

.tab2 {
    justify-content: end !important;
}